home *** CD-ROM | disk | FTP | other *** search
- /*
- yyerror: print out the errors for the parser. To be helpful,
- we print the line number in the control file where the
- problem occurred.
-
- Kenneth Ingham
-
- Copyright (C) 1987 The University of New Mexico
- */
-
- #include "defs.h"
-
- yyerror(s)
- char *s;
- {
- extern int control_line;
-
- fprintf(stderr,"%s on or near line %d\n", s, control_line);
- }
-